type github.com/klauspost/compress/zstd.decSymbol
36 uses
github.com/klauspost/compress/zstd (current package)
fse_decoder.go#L35: dt [maxTablesize]decSymbol // Decompression table.
fse_decoder.go#L213: type decSymbol uint64
fse_decoder.go#L215: func newDecSymbol(nbits, addBits uint8, newState uint16, baseline uint32) decSymbol {
fse_decoder.go#L216: return decSymbol(nbits) | (decSymbol(addBits) << 8) | (decSymbol(newState) << 16) | (decSymbol(baseline) << 32)
fse_decoder.go#L219: func (d decSymbol) nbBits() uint8 {
fse_decoder.go#L223: func (d decSymbol) addBits() uint8 {
fse_decoder.go#L227: func (d decSymbol) newState() uint16 {
fse_decoder.go#L231: func (d decSymbol) baselineInt() int {
fse_decoder.go#L235: func (d *decSymbol) setNBits(nBits uint8) {
fse_decoder.go#L237: *d = (*d & mask) | decSymbol(nBits)
fse_decoder.go#L240: func (d *decSymbol) setAddBits(addBits uint8) {
fse_decoder.go#L242: *d = (*d & mask) | (decSymbol(addBits) << 8)
fse_decoder.go#L245: func (d *decSymbol) setNewState(state uint16) {
fse_decoder.go#L247: *d = (*d & mask) | decSymbol(state)<<16
fse_decoder.go#L250: func (d *decSymbol) setExt(addBits uint8, baseline uint32) {
fse_decoder.go#L252: *d = (*d & mask) | (decSymbol(addBits) << 8) | (decSymbol(baseline) << 32)
fse_decoder.go#L256: func decSymbolValue(symb uint8, t []baseOffset) (decSymbol, error) {
fse_decoder.go#L265: func (s *fseDecoder) setRLE(symbol decSymbol) {
fse_decoder.go#L293: dt []decSymbol
fse_decoder.go#L294: state decSymbol
fse_decoder.go#L298: func (s *fseState) init(br *bitReader, tableLog uint8, dt []decSymbol) {
fse_decoder.go#L305: func (s decSymbol) final() (int, uint8) {
fse_decoder_amd64.go#L50: newState := decSymbol(ctx.errParam1)
fse_decoder_amd64.go#L55: newState := decSymbol(ctx.errParam1)
fse_decoder_amd64.go#L56: oldState := decSymbol(ctx.errParam2)
seqdec.go#L444: func (s *sequenceDecs) next(br *bitReader, llState, mlState, ofState decSymbol) (ll, mo, ml int) {
seqdec_amd64.go#L13: llTable []decSymbol
seqdec_amd64.go#L14: mlTable []decSymbol
seqdec_amd64.go#L15: ofTable []decSymbol
seqdec_amd64.go#L177: llTable []decSymbol
seqdec_amd64.go#L178: mlTable []decSymbol
seqdec_amd64.go#L179: ofTable []decSymbol
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |